Skip to content

Instantly share code, notes, and snippets.

@ascherj
ascherj / umpire_chatgpt.md
Last active February 19, 2026 21:14
UMPIRE Walkthrough w/ ChatGPT

🧠 UMPIRE Walkthrough w/ ChatGPT

The way you approach solving a coding problem—how you think, communicate, and refine—is often more valuable than simply arriving at the right answer. Use ChatGPT as a supportive partner as you work incrementally through the six steps of the UMPIRE framework:

Understand → Match → Plan → Implement → Review → Evaluate


🎬 Setting the Stage

@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active February 19, 2026 21:14
Complete Recent Discord Quest

Complete Recent Discord Quest

Note

This does not works in browser for quests which require you to play a game! Use the desktop app to complete those.

How to use this script:

  1. Accept a quest under the Quests tab
  2. Press Ctrl+Shift+I to open DevTools
  3. Go to the Console tab
  4. Paste the following code and hit enter:
@christopher-hopper
christopher-hopper / README.md
Last active February 19, 2026 21:10
macOS Zscaler stop | disable Zscaler on mac

Disable macOS Zscaler

The following script can be used to disable Zscaler on macOS. Zscaler is corporate spyware and security software that controls access to Internet resources and spoofs TLS certificates to allow inspection of encrypted communications on corporate managed computers.

This script will not uninstall the Zscaler software.

@allenyllee
allenyllee / install_tools.sh
Last active February 19, 2026 21:09
mount vhdx in linux
#!/bin/bash
# install qemu utils
sudo apt install qemu-utils
# install nbd client
sudo apt install nbd-client
@karpathy
karpathy / microgpt.py
Last active February 19, 2026 21:09
microgpt
"""
The most atomic way to train and run inference for a GPT in pure, dependency-free Python.
This file is the complete algorithm.
Everything else is just efficiency.
@karpathy
"""
import os # os.path.exists
import math # math.log, math.exp
@imbushuo
imbushuo / DFRComposite.inf
Created July 24, 2019 18:39
Composite configuration for Apple DFR device in Windows
;
; DFRUsbCCGP.inf
;
; Installs CCGP and WinUSB device for DFR
;
[Version]
Signature = "$Windows NT$"
Class = USBDevice
ClassGUID = {88BAE032-5A81-49f0-BC3D-A4FF138216D6}
@ChristopherA
ChristopherA / README.md
Last active February 19, 2026 21:05
Self-Improving Claude Code: A bootstrap seed prompt that evolves into a sophisticated configuration system

Self-Improving Claude Code: A Bootstrap Seed

The Hypothesis

A single prompt (~1400 tokens), placed in a project's .claude/CLAUDE.md, can bootstrap a Claude Code instance into a self-improving system — one that captures learnings, extracts patterns, evolves its own configuration, and gets meaningfully better at helping its user with each session.

No pre-built infrastructure required. No user-level config. No hooks, skills, templates, or elaborate folder hierarchies. Just a seed and the affordances Claude Code already provides.

Background

Office Hours: Building a PPM Image Drawing Agent

Objective: Add a custom AI agent that can create PPM images using natural language instructions.

This guide walks through adding a new Image Artist agent to the modular agent supervisor system. The agent will understand human-readable prompts like:

"Draw a PPM image of size 200 by 200, add a square at coordinate 10,10 with a size of 20 pixels in red color, then add 10 circles of varying sizes and colors randomly around the image, and write the file as image.ppm"